home *** CD-ROM | disk | FTP | other *** search
/ CDUTIL 13 / CDUTIL #13 Julio 1995.iso / windows / acadwin / ads / cpp / dde / adsdde.mak < prev    next >
Encoding:
Makefile  |  1995-02-08  |  1.4 KB  |  41 lines

  1. #
  2. #   ADSDDE.MAK -
  3. #        
  4. #        makefile to make ADS C++ sample DDE OBJs
  5. #
  6. #      (C) Copyright 1988-1994 by Autodesk, Inc.
  7. #
  8. #      This program is copyrighted by Autodesk, Inc. and is  licensed
  9. #      to you under the following conditions.  You may not distribute
  10. #      or  publish the source code of this program in any form.   You
  11. #      may  incorporate this code in object form in derivative  works
  12. #      provided  such  derivative  works  are  (i.) are  designed and
  13. #      intended  to  work  solely  with  Autodesk, Inc. products, and
  14. #      (ii.)  contain  Autodesk's  copyright  notice  "(C)  Copyright
  15. #      1988-1994 by Autodesk, Inc."
  16. #
  17. #      AUTODESK  PROVIDES THIS PROGRAM "AS IS" AND WITH  ALL  FAULTS.
  18. #      AUTODESK  SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF  MER-
  19. #      CHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK,  INC.
  20. #      DOES  NOT  WARRANT THAT THE OPERATION OF THE PROGRAM  WILL  BE
  21. #      UNINTERRUPTED OR ERROR FREE.
  22. #
  23. !include <..\adsmake.nt>
  24.  
  25. LOCINC =    = $(ADS_CPP)\GENERAL $(ADS)
  26. VPATH       = $(DDE_OBJ_DIR)
  27.  
  28. all: $(DDEOBJS)
  29.  
  30. {.}.cpp{$(VPATH)}.obj:
  31.     echo Compiling $(@B).cpp
  32.     if exist $@ del $@
  33.     $(COMP) -Tp$(@B).cpp $(ERRSTUFF)
  34.     $(POSTERR)
  35.  
  36. clean:
  37.     echo Cleaning DDE Objects
  38.     if not exist $(DDE_OBJ_DIR) mkdir $(DDE_OBJ_DIR)
  39.     if exist $(DDE_OBJ_DIR)\*.* del /Q $(DDE_OBJ_DIR)\*.*
  40.     if exist $(DDE_DIR)\*.pdb del /Q $(DDE_DIR)\*.pdb
  41.